float f = 12.6;
int i = 127;
f = i; // Converts 127 to 127.0
i = f; // Error: Can't automatically convert a float to an int
